ALTER TABLE "LabReportVerification"
ADD COLUMN "CreatedBy" integer,
ADD COLUMN "CreatedDate" timestamp without time zone,
add CONSTRAINT "LabReportVerification_CreatedBy_fkey" FOREIGN KEY ("CreatedBy") 
  REFERENCES public."Account" ("AccountId") MATCH SIMPLE
        ON UPDATE NO ACTION
        ON DELETE NO ACTION